@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,500&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

.Breadcrumb-box {
  margin: 20px 0 5px 0;
  width: 500px;
}

.productbrand {
  position: relative;
  transition: 0.3s;
  color: #ff007f;
}

body,
html {
  overflow-x: hidden;
}

.productbrand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 50%;
  transition: 0.3s;
  background-color: #00adef;
}

.productbrand:hover {
  width: 100%;
}

.brand-heading-box {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  width: 100vw;
}

.brand-heading-box h1 {
  font-size: 35px;
}

.product-type-heading {
  color: #ff007f;
  position: relative;
  cursor: pointer;
}

.AddToWishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  position: absolute;
  right: 10px;
  top: 20px;
  height: 40px;
  width: 40px;
  line-height: 22px;
  border-radius: 50%;
  padding: 3px;
  background-color: white;
  color: #ff007f;
  border: 1px solid #80dbff;
  transition: 0.3s;
  z-index: 1;
}

.designing-line {
  height: 2px;
  width: 70%;
  background-color: #00adef;
  margin-top: 3px;
}

.product-box {
  width: 23%;
  min-width: 300px;
  padding: 10px 12px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.product-box img {
  width: 100%;
  height: 18.7rem;
  object-fit: contain;
  border-radius: 20px;
}

.product-box .product-data {
  text-align: start;
  padding: 10px 0;
}

.product-data span {
  font-size: 14px;
  font-weight: bold;
}

.product-data h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 1rem;
  height: 40px;
  font-weight: 450;
}


.price-cart {
  height: 60px;
  display: flex;
  padding: 0 5px;
  align-items: center;
  justify-content: space-between;
}

.price-cart h4 {
  padding-top: 5px;
  font-size: 1rem;
  font-weight: 700;
  color: #ff007f;
  font-family: 'Nunito Sans';
}

.product-price-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-non-discount-price {
  text-decoration: line-through;
  text-decoration-color: #ff007f;
  -webkit-text-decoration-color: #ff007f;
  color: #00adef !important;
  font-size: 0.8rem;
}

.product-cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  font-weight: 500;
  color: #ff007f;
  background-color: white;
  border: 2px solid #00adef;
  font-size: 1.4rem;
  transition: 0.3s;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.product-cart:hover {
  background-color: #ff007f;
  color: white;
  border: none;
}

.product-main-container-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  margin: 15px 0;
}

.product-divider {
  width: 0;
  min-width: 300px;
}

.product-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .product-box {
    min-width: 220px;
    padding: 8px 10px;
  }

  .product-box img {
    height: 10rem;
    object-fit: contain;
  }

  .product-box .product-data {
    padding: 0;
  }

  .product-data h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  .price-cart h4 {
    font-size: 0.8rem;
  }

  .product-cart {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.2rem;
    bottom: 5px;
    border: 1px solid #80dbff;
  }

  .AddToWishlist {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .product-data span {
    font-size: 10px;
  }
}

@media (max-width: 455px) {
  .product-box {
    min-width: 210px;
  }
}

@media (max-width: 433px) {
  .product-box {
    min-width: 200px;
  }
}

@media (max-width: 415px) {
  .product-box {
    min-width: 190px;
  }
}

@media (max-width: 395px) {
  .product-box {
    min-width: 180px;
  }
}

@media (max-width: 375px) {
  .product-box {
    min-width: 170px;
  }
}


@media (min-width: 615px) {
  .price-cart {
    height: 40px;
  }
}

@media (max-width: 615px) {
  .product-discount-price {
    text-align: start;
  }

  .product-box img {
    height: 12rem;
  }

  .product-data h5 {
    height: 50px;
  }

  .product-price-box {
    display: block;
  }
}

@media screen and (min-width: 480px) and (max-width: 520px) {
  .product-box {
    min-width: 230px;
  }
}

@media screen and (min-width: 520px) and (max-width: 555px) {
  .product-box {
    min-width: 250px;
  }

}



@media screen and (min-width: 320px) and (max-width: 550px) {
  .product-divider {
    min-width: 175px;
  }
}

@media screen and (min-width: 445px) and (max-width: 480px) {
  .product-box {
    min-width: 200px;
  }
}

@media screen and (min-width: 481px) and (max-width: 524px) {
  .product-box {
    min-width: 210px;
    padding: 8px 10px;
  }
}

@media screen and (min-width: 525px) and (max-width: 599px) {
  .product-box {
    min-width: 240px;
    padding: 8px 10px;
  }

  .product-divider {
    min-width: 200px !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 615px) {
  .product-box {
    min-width: 290px !important;
    padding: 8px 10px;
  }

  .product-divider {
    min-width: 300px !important;
    padding: 8px 10px;
  }
}

@media screen and (min-width: 765px) and (max-width: 900px) {
  .product-box {
    min-width: 350px;
    padding: 8px 10px;
  }
}

@media screen and (min-width: 900px) and (max-width: 925px) {
  .product-box {
    min-width: 290px;
    padding: 8px 10px;
  }
}

@media screen and (min-width: 1130px) and (max-width: 1200px) {
  .product-box {
    min-width: 350px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1220px) {
  .product-box {
    min-width: 290px;
  }
}

.price-and-stock-info {
  position: absolute;
  left: 10px;
  top: 20px;
  font-family: Soin-Sans-Pro-Roman;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: bold;
  z-index: 1;
}

.out-of-stock {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -225%);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(242, 92, 168);
  letter-spacing: 0.4px;
  border: 1.6px solid rgb(242, 92, 168);
}

.discount-box {
  position: absolute;
  left: 0;
  top: 16px;
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 5px 10px;
  z-index: 10;
  border-radius: 2px 5px 5px 2px;
}

.discount {
  color: #15803d;
  font-size: 14px;
  z-index: 1;
}

@media (max-width: 685px) {
  .discount {
    padding: 5px;
    font-size: 14px;
  }

  .out-of-stock {
    padding: 5px;
    font-size: 12px;
  }
}

.option-tag {
  position: relative;
}

.select-btn {
  width: 300px;
  display: flex;
  height: 55px;
  background-color: rgb(255, 255, 255);
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ff007f;
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
  color: #00adef;
}

.option-tag.active i {
  transform: rotate(180deg);
}

.option-tag ul {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  padding: 20px;
  background-color: white;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.option-tag ul li {
  height: 55px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 8px;
  color: #333;
  position: relative;
  transition: 0.3s;
}

.SelectedText i {
  display: none;
}

.option-tag ul li i {
  font-size: 20px;
  position: absolute;
  right: 10px;
}

.option-tag ul li:hover,
.option-tag ul li.selected {
  background-color: #ff007f;
  color: white;
}

.options {
  display: none;
}

.option-tag.active .options {
  display: block;
}

@media (max-width: 800px) {
  .select-btn {
    width: 200px;
  }

  .option-tag ul li {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .brand-heading-box {
    display: flex;
    align-items: center;
  }

  .designing-line {
    width: 50%;
  }

  .product-type-heading h1 {
    font-size: 20px;
  }

  .select-btn {
    overflow: hidden;
    width: 150px;
    height: 35px;
    font-size: 10px;
  }

  .option-tag ul {
    overflow: hidden;
    top: 30px;
    padding: 0px 20px !important;
  }

  .option-list {
    font-size: 12px;
    padding: 0 10px !important;
    height: 30px !important;
  }

  .option-list i {
    right: 5px !important;
    font-size: 13px !important;
  }

  .option-tag ul {
    padding: 10px !important;
  }

  .select-btn i {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .Breadcrumb-box {
    width: 99vw;
  }
}


.DSN-point-container {
  position: relative;
}

.DSN-point {
  border-radius: 5px;
  right: 0px;
  bottom: 0px;
  font-size: 12px;
  padding: 5px 10px;
  position: absolute;
  scroll-padding-top: 126px;
  color: white;
  font-weight: 400;
  line-height: 18px;
  background-color: #00adef;
  text-align: left;
}

@media (max-width:550px) {
  .DSN-point {
    padding: 5px;
  }

  .product-box {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  }
}